net/http.http2requestParam.authority (field)

9 uses

	net/http (current package)
		h2_bundle.go#L5732: 		authority: f.PseudoValue("authority"),
		h2_bundle.go#L5738: 		if rp.path != "" || rp.scheme != "" || rp.authority == "" {
		h2_bundle.go#L5765: 	if rp.authority == "" {
		h2_bundle.go#L5766: 		rp.authority = rp.header.Get("Host")
		h2_bundle.go#L5792: 	scheme, authority, path string
		h2_bundle.go#L5835: 		url_ = &url.URL{Host: rp.authority}
		h2_bundle.go#L5836: 		requestURI = rp.authority // mimic HTTP/1 server behavior
		h2_bundle.go#L5861: 		Host:       rp.authority,
		h2_bundle.go#L6636: 			authority: msg.url.Host,